home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / 2716B.ZIP / SMUTIL.EXE / SAMPLEA.ASM < prev    next >
Assembly Source File  |  1991-04-22  |  638b  |  23 lines

  1. ;*************************************************************************
  2. ; SAMPLEA.ASM                                                            *
  3. ; Sample assembler function for SUPER MAKE                               *
  4. ;                                                                        *
  5. ; Use this file OR SAMPLE2.C                                             *
  6. ;*************************************************************************
  7.  
  8. .MODEL SMALL
  9. .CODE
  10.     PUBLIC _smplad
  11. _smplad    PROC
  12.     push     bp
  13.     mov      bp,sp
  14.  
  15.     mov    ax,Word Ptr [BP+06]
  16.     add    ax,Word Ptr [BP+04]
  17.  
  18.     mov    sp,bp
  19.     pop    bp
  20.     ret
  21. _smplad    ENDP
  22.     END
  23.